From: Chong Yidong Date: Sun, 10 May 2009 22:01:20 +0000 (+0000) Subject: * emacs-lisp/cl-macs.el (lexical-let*): Doc fix (Bug#3178). X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~421^2~619 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=6b3c60465bc5cb643a905da2cbc26264b8487f84;p=emacs.git * emacs-lisp/cl-macs.el (lexical-let*): Doc fix (Bug#3178). --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5e784d6ea93..a853cf9cdc3 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2009-05-10 Chong Yidong + + * emacs-lisp/cl-macs.el (lexical-let*): Doc fix (Bug#3178). + 2009-05-10 Kim F. Storm * ido.el: Add proper support for confirm-nonexistent-file-or-buffer diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el index edcb5c90564..2d6eb93550b 100644 --- a/lisp/emacs-lisp/cl-macs.el +++ b/lisp/emacs-lisp/cl-macs.el @@ -1448,8 +1448,10 @@ lexical closures as in Common Lisp. ;;;###autoload (defmacro lexical-let* (bindings &rest body) "Like `let*', but lexically scoped. -The main visible difference is that lambdas inside BODY will create -lexical closures as in Common Lisp. +The main visible difference is that lambdas inside BODY, and in +successive bindings within BINDINGS, will create lexical closures +as in Common Lisp. This is similar to the behavior of `let*' in +Common Lisp. \n(fn VARLIST BODY)" (if (null bindings) (cons 'progn body) (setq bindings (reverse bindings))